-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lsp-ws-connection in repo (follow up) #108
Conversation
Thanks for making a pull request to JupyterLab! To try out this branch on binder, follow this link: |
Also, by fixing the dependencies, the |
Test reporting wouldn't have caught anything in particular, but it's nice to have and luckily didn't pull in too many additional dependencies. |
"@krassowski/jupyterlab-lsp": "^0.6.1", | ||
"lsp-ws-connection": "^0.2.0" | ||
"@krassowski/jupyterlab-lsp": "file:../jupyterlab-lsp", | ||
"lsp-ws-connection": "file:../lsp-ws-connection" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I was thinking about it but feared the outcome for the publishing process... But I guess it's better to start with than nothing. I will read up on how JupyterLab solves this (sure someone from the team may have some ideas on how to do it better as well).
dependencies: | ||
vscode-jsonrpc "^4.0.0" | ||
vscode-jsonrpc "^4.1.0-next" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note on next
in here.
It's much better now, I see that all the files in |
References
Code changes
file:../<pkg>
links in metapackage dependencies.*
dependency betweenjupyterlab-lsp
andlsp-ws-connection
for nowjupyterlab-lsp
(so there's only the onetsc -w
running in metapackage, and the onewebpatch --watch
running inlsp-ws-connection
)lsp-ws-connection
in there. I'm glad I'm not developing on windows.I do recommend a
jupyter lab clean
, and full run ofpostBuild
to ensure everything has been cleaned right after we add a new sub-package (hopefully not too many more for a while). Also, due to the wackiness of the webpack build(s), there can be some thrashing after a change tolsp-ws-connection
as built byjlpm watch
andjupyter lab --watch
... i usually end up making a few whitespace changes and then reverting them so it catches up (one way or the other). Not ideal, but there's kind of a lot going on down in there, and having to do a whole release to try out a new thing Is Not Fun.User-facing changes
None
Backwards-incompatible changes
None
Chores